Package-level declarations
Types
Link copied to clipboard
data class ProductInfo(val productID: String?, val productName: String?, val productVariant: String?)
Represents information about a product in a transaction.
Link copied to clipboard
data class ProductItem(val category: Category?, val price: Price?, val productInfo: ProductInfo?, val quantity: Int)
Represents an item in a transaction, including its category, price, and product details.
Link copied to clipboard
Link copied to clipboard
Represents an event associated with a transaction.
Link copied to clipboard
data class WebTransaction(val products: List<ProductItem?>?, val total: Total?, val transactionID: String?)
Represents a web-based transaction containing products and cost details.